home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / archiver / mta_vf35.zip / MTA__BAT.EXE / BATCHES.DOC next >
Text File  |  1990-09-09  |  3KB  |  58 lines

  1. I have included some examples of batches that can (must) be used with
  2. MTA. The collection contains the following files:
  3.  
  4. MTACHILD.BAT    Usage : When MTA must call itself (with swapping)
  5.                         when an arc-in-arc file is converted. See
  6.                         MTA.CTL;
  7.  
  8. MTABETWE.BAT    Usage : An extended example (containing the MTA_CRC
  9.                         and MTA_DIR programs) of the batch that can
  10.                         be called in the ExitBetweenConversion exit
  11.                         of MTA;
  12.  
  13. MTABETWN.BAT    Usage : A normal example (containing normal CRC32
  14.                         and DOS DIR programs) of the batch that can
  15.                         be called in the ExitBetweenConversion exit
  16.                         of MTA;
  17.  
  18. MTACOMPN.BAT    Usage : An example that can be used in the exit
  19.                         ExitAfterCompression;
  20.  
  21. MTASTART.BAT    Usage : An example that can be used in the exit
  22.                         ExitBeforeStart;
  23.  
  24. MTA__END.BAT    Usage : An example that can be used in the exit
  25.                         ExitBeforeEnd;
  26.  
  27. MTAFORMT.BAT    Usage : An example that can be used in the exit
  28.                         ExitBeforeFill (only with /D and the
  29.                         AllDisketteFiles options set to ON);
  30.  
  31. MTACATLT.BAT    Usage : An example that can be used in the exit
  32.                         ExitAfterFill (only with /D option set
  33.                         to ON);
  34.  
  35. All exits are optional, you do not have to include them at all. The
  36. following general rulles apply to all batch-files:
  37.  
  38. - MTA will clear the screen (it's own screen);
  39. - MTA will restore the cursor;
  40. - MTA wil NOT restore the video-mode. If MTA is started with, lets
  41.   say 43-lines support and some of the (buggy!) programs that are
  42.   called in a shell will restore the screen to 25-line mode and
  43.   not back to 43-line mode after they have finished, MTA will not
  44.   restore the mode back to 43-line support (see DOC). MTA WILL act
  45.   according to the new screen dimensions and will reset it's own
  46.   screens to the new mode;
  47. - MTA will call COMMAND.COM (or an alternative shell) with /C. This
  48.   is ALWAYS done with help of the COMSPEC variable;
  49. - You do not have to call a batch, you can also call a program, but
  50.   in this case you must either have the program in the DOS-path or
  51.   supply the full path and name of the program;
  52. - MTA will preserve the directory, so you can change the directory
  53.   to something else, MTA will change it back after the call returns
  54.   to MTA;
  55. - You can include a full 'circus' in your batch-files. In this case
  56.   it is advised to use the swapping program (look into MTACHILD.BAT
  57.   for an example);
  58.